home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 8 / The Arsenal Files Collection #8 (Arsenal Computer) (1996).ISO / pcboard / gbye_v2.zip / G.PPE (.txt) < prev    next >
PCBoard Programming Language Executable  |  1996-10-07  |  2KB  |  94 lines

  1. ;------------------------------------------------------------------------------
  2. ;                                                   .ss.
  3. ;                                                   `²²'
  4. ;             .,sS$Ss,,s$  .,sS$$$Ss.  .,sS$Ss,,s$ .ss.  .sSs.
  5. ;           .d$$²^°²$$$$'.d$P²°^^²$P'.d$$²^°²$$$$'.$$$' .$$$²Sb,.
  6. ;           $$$'   .$$$' $$$²Sçsµ²' .$$$'   .$$$'.$$$' .$$$'  `$$b.
  7. ;           $$$b,,d$$$' ,$$$b,....,s$$$$b,,d$$$'.$$$;.,$$$'    ;$$$
  8. ;           `²S$$S²²S$$S²°²S$$$$S²°°²S$$$$$$',$$S²°²S$S'.sS$$$P²'
  9. ;                                    .sS²°$$$²²°"'       d²°'
  10. ;                                  .$$²  .$$'
  11. ;                                  $$$.,d$$'
  12. ;                                  `²S$$S²'
  13. ;------------------------------------------------------------------------------
  14. ; P.P.L.X. 2.OO                          (C)1996 - Lone Runner / AEGiS CoRP'96 
  15. ;------------------------------------------------------------------------------
  16. ; PPE 3.3O (Encryption type II) - Analysis ON - Postprocessing ON
  17. ;------------------------------------------------------------------------------
  18.  
  19.     String   STRING001
  20.  
  21. ;------------------------------------------------------------------------------
  22.  
  23.     GetUser
  24.     Newline
  25.     PrintLn "@X0A(@X0CQ@X0A) Quit.  I want back in the BBS! @X0F"
  26.     Newline
  27.     PrintLn "@X0A(@X0CG@X0A) Goodbye                        @X0F"
  28.     Newline
  29.     PrintLn "@X0A(@X0CL@X0A) Log-Off Comment                @X0F"
  30.     Newline
  31.     InputStr "@X0AEnter your choice now ", STRING001, 10, 1, "QGL", 2 + 4 + 8
  32.     If (STRING001 == "Q") Goto LABEL001
  33.     If (STRING001 == "G") Goto LABEL002
  34.     If (STRING001 == "L") Goto LABEL003
  35.     :LABEL001
  36.     Log "Goodbye [PPE] v.1 - Returned to BBS ", 0
  37.     Newline
  38.     PrintLn "@X0APlease hold... re-loading BBS... @X0F"
  39.     End
  40.     :LABEL002
  41.     Log "Goodbye [PPE] v.1 - Caller Logged Off", 0
  42.     Newline
  43.     PrintLn "@X0AThanks for calling ", U_Name(), "!"
  44.     Bye
  45.     :LABEL003
  46.     Log "Goodbye [PPE] v.1 - Comment to SysOp ", 0
  47.     KbdStuff "E^M"
  48.     KbdStuff "SYSOP^M"
  49.     KbdStuff "SYSOP^M"
  50.     KbdStuff "LOGOFF COMMENT^M"
  51.     KbdStuff "R^M"
  52.     End
  53.  
  54. ;------------------------------------------------------------------------------
  55. ;
  56. ; Usage report (before postprocessing)
  57. ;
  58. ; ■ Statements used :
  59. ;
  60. ;    2       End
  61. ;    3       Goto 
  62. ;    5       PrintLn 
  63. ;    3       If 
  64. ;    1       GetUser
  65. ;    3       Log 
  66. ;    1       InputStr 
  67. ;    6       Newline
  68. ;    5       KbdStuff 
  69. ;    1       Bye
  70. ;
  71. ;
  72. ; ■ Functions used :
  73. ;
  74. ;    2       +
  75. ;    3       ==
  76. ;    1       U_Name()
  77. ;
  78. ;------------------------------------------------------------------------------
  79. ;
  80. ; Analysis flags : No flag
  81. ;
  82. ;------------------------------------------------------------------------------
  83. ;
  84. ; Postprocessing report
  85. ;
  86. ;    0       For/Next
  87. ;    0       While/EndWhile
  88. ;    0       If/Then or If/Then/Else
  89. ;    0       Select Case
  90. ;
  91. ;------------------------------------------------------------------------------
  92. ;                 AEGiS Corp - Break the routines, code against the machines!
  93. ;------------------------------------------------------------------------------
  94.